home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Other Stuff / Other Stuff ’97 / PowerOS Development / booter / garymode.h < prev    next >
Text File  |  1997-06-26  |  355b  |  17 lines

  1. /*
  2.     contributed by Mimir Reynisson <skelmir@qualia.com>
  3. */
  4.  
  5. struct PPCRegisterList
  6. {
  7.     unsigned long   PC;
  8.     unsigned long   GPR[32];
  9.     double          FPR[32];
  10. };
  11. typedef struct PPCRegisterList PPCRegisterList;
  12.  
  13. typedef void (*PriviledgedEntryPoint)();
  14.  
  15. void
  16. EnterPriviledgedMode(PriviledgedEntryPoint entryPoint,
  17.     void *param1, void *param2, void *param3);